home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Red Eye Press Kit
/
Red Eye Press Kit.iso
/
pc
/
main.dxr
/
SCRIPTS_93_fadeOver.ls
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2005-07-18
|
238 b
|
22 lines
property my, fade
on beginSprite me
my = sprite(me.spriteNum)
fade = 50
my.blend = fade
end
on mouseWithin me
my.blend = 100
cursor(280)
end
on mouseLeave me
my.blend = fade
cursor(0)
end
on endSprite me
cursor(0)
end